home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / PowerPC / vbcc / machines / amigawos / libsrc / AmigaLib / DoPktn.c < prev    next >
C/C++ Source or Header  |  1998-08-02  |  815b  |  32 lines

  1. #include <proto/dos.h>
  2.  
  3. LONG DoPkt0(struct MsgPort *port, long action)
  4. {
  5.   return DoPkt(port, action, 0, 0, 0, 0, 0);
  6. }
  7.  
  8. LONG DoPkt1(struct MsgPort *port, long action, long arg1)
  9. {
  10.   return DoPkt(port, action, arg1, 0, 0, 0, 0);
  11. }
  12.  
  13. LONG DoPkt2(struct MsgPort *port, long action, long arg1, long arg2)
  14. {
  15.   return DoPkt(port, action, arg1, arg2, 0, 0, 0);
  16. }
  17.  
  18. LONG DoPkt3(struct MsgPort *port, long action, long arg1, long arg2, long arg3)
  19. {
  20.   return DoPkt(port, action, arg1, arg2, arg3, 0, 0);
  21. }
  22.  
  23. LONG DoPkt4(struct MsgPort *port, long action, long arg1, long arg2, long arg3, long arg4)
  24. {
  25.   return DoPkt(port, action, arg1, arg2, arg3, arg4, 0);
  26. }
  27.  
  28. LONG DoPkt5(struct MsgPort *port, long action, long arg1, long arg2, long arg3, long arg4, long arg5)
  29. {
  30.   return DoPkt(port, action, arg1, arg2, arg3, arg4, arg5);
  31. }
  32.